home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: Visual Basic
/
Resource for Source - Visual Basic.iso
/
tools
/
subvbx.exe
/
SUBVBDOC.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-29
|
2KB
|
81 lines
// subvbdoc.cpp : implementation of the CSubvbxDoc class
//
#include "stdafx.h"
#include "subvbx.h"
#include "subvbdoc.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSubvbxDoc
IMPLEMENT_DYNCREATE(CSubvbxDoc, CDocument)
BEGIN_MESSAGE_MAP(CSubvbxDoc, CDocument)
//{{AFX_MSG_MAP(CSubvbxDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSubvbxDoc construction/destruction
CSubvbxDoc::CSubvbxDoc()
{
// TODO: add one-time construction code here
}
CSubvbxDoc::~CSubvbxDoc()
{
}
BOOL CSubvbxDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CSubvbxDoc serialization
void CSubvbxDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CSubvbxDoc diagnostics
#ifdef _DEBUG
void CSubvbxDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CSubvbxDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CSubvbxDoc commands